home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Cream of the Crop 22
/
Cream of the Crop 22.iso
/
bbs
/
pad321.zip
/
INFO.MH
< prev
next >
Wrap
Text File
|
1996-08-08
|
901b
|
48 lines
#ifndef __INFO_MH
#define __INFO_MH
#ifndef __MAX_MH
#include <max.mh>
#define __MAX_MH
#endif
#ifndef __MAX_MENU_MH
#include <max_menu.mh>
#define __MAX_MENU_MH
#endif
long getBaudRate () {
long: temp;
string: stemp;
stemp := input;
input := "";
menu_cmd (MNU_KEY_POKE, "%b");
temp := strtol (input);
input := stemp;
return temp;
}
int getPortNum () {
int: temp;
string: stemp;
stemp := input;
input := "";
menu_cmd (MNU_KEY_POKE, "%p");
temp := strtoi (input);
input := stemp;
return temp;
}
//void writelnDirect (string: output) {
// int: handle;
//
// print (output + "\n");
// handle := open ("CON", IOPEN_WRITE);
// writeln (handle, output);
// close (handle);
// if (output = "") shell (IOUTSIDE_DOS | IOUTSIDE_RUN, "echo.");
// shell (IOUTSIDE_DOS | IOUTSIDE_RUN, "echo " + output);
// }
#endif